home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 04 - 1988 / 04.01 Jan 88 / Downloader Source / PackageMgr.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-09-14  |  491 b   |  37 lines  |  [TEXT/KAHL]

  1.  
  2. /*
  3.  *  PackageMgr.h
  4.  *
  5.  *  Copyright (c) 1986 THINK Technologies, Inc.
  6.  *  These interfaces are based on information published in
  7.  *  "Inside Macintosh" by Apple Computer, Addison-Wesley,
  8.  *  Reading (Mass.), 1985-86.
  9.  *
  10.  */
  11.  
  12. #ifndef    _PackageMgr_
  13. #define _PackageMgr_
  14.  
  15. #ifndef _MacTypes_
  16. #include "MacTypes.h"
  17. #endif
  18.  
  19. /* package IDs */
  20. enum {
  21.     listMgr,
  22.     dskInit = 2,
  23.     stdFile,
  24.     flPoint,
  25.     trFunc,
  26.     intUtil,
  27.     bdConv
  28. };
  29.  
  30. /*  low-memory globals  */
  31. extern Handle AppPacks[] : 0xAB8;
  32.  
  33.  
  34. #endif
  35.  
  36.  
  37.